|
Oracle Data Mining Java API Reference 10g Release 2 (10.2) B14341-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
This factory is used to create the BinningTransform object.
| Method Summary | |
OraAttributeBins[] |
computeBins(java.lang.String inputDataURI, java.lang.Integer numberOfNumericalBins, java.lang.Integer numberOfCategoricalBins, OraCategoricalBinningType catBinType, OraNumericalBinningType numBinType, java.lang.String[] excludeAttributes)Computes the bins for categorical and numerical attributes that are computed using the input data. |
OraCategoricalAttributeBins[] |
computeCategoricBins(java.lang.String inputDataURI, java.lang.String[] categoricAttributes, OraCategoricalBinningType[] catBinType, java.lang.Integer[] numberOfCategoricBins)Computes the bins for categoric attributes using the input data. |
OraNumericalAttributeBins[] |
computeNumericBins(java.lang.String inputDataURI, java.lang.String[] numericAttributes, OraNumericalBinningType[] numBinType, java.lang.Integer[] numberOfNumericalBins)Computes the bins for numerical attributes using the input data. |
OraBinningTransform |
create(java.lang.String inputDataURI, java.lang.String outputDataURI, boolean isOutputAsView)Creates a binning transform object with the system default number of categorical and numerical bins and binning type. |
OraBinningTransform |
create(java.lang.String inputDataURI, java.lang.String outputDataURI, boolean isOutputAsView, java.lang.Integer numberOfNumericalBins, java.lang.Integer numberOfCategoricalBins, OraCategoricalBinningType catBinType, OraNumericalBinningType numBinType)Creates a binning transform, that uses the user specified binning types and number of bins. |
OraBinningTransform |
create(java.lang.String inputDataURI, java.lang.String outputDataURI, boolean isOutputAsView, OraAttributeBins[] customBins)Creates a binning transform that uses the user specified custom bins for doing binning. |
OraBinningTransform |
create(java.lang.String inputDataURI, java.lang.String outputDataURI, boolean isOutputAsView, java.lang.String inputCategoricalBinTable, java.lang.String inputNumericalBinTable)Creates a binning transform that uses the user specified bin boundary tables as input. |
OraBinningTransform |
create(java.lang.String inputDataURI, java.lang.String outputDataURI, boolean isOutputAsView, java.lang.String inputCategoricalBinTable, java.lang.String inputNumericalBinTable, OraAttributeBins[] customBins)Creates a binning transform that uses the user specified custom bins for doing binning and existing bin boundary tables |
| Method Detail |
public OraBinningTransform create(java.lang.String inputDataURI,
java.lang.String outputDataURI,
boolean isOutputAsView)
throws javax.datamining.JDMException
inputDataURI - uri of the input tableoutputDataURI - uri of the output view or tableisOutputAsView - falg to indicate the output is a view or tablejavax.datamining.JDMException - if BinningTransform can not be created
public OraBinningTransform create(java.lang.String inputDataURI,
java.lang.String outputDataURI,
boolean isOutputAsView,
java.lang.String inputCategoricalBinTable,
java.lang.String inputNumericalBinTable)
throws javax.datamining.JDMException
inputDataURI - uri of the input tableoutputDataURI - uri of the output view or tableisOutputAsView - falg to indicate the output is a view or tableinputCategoricalBinTable - categorical bin boundary tableinputNumericalBinTable - numerical bin boundary tablejavax.datamining.JDMException - if BinningTransform can not be created
public OraBinningTransform create(java.lang.String inputDataURI,
java.lang.String outputDataURI,
boolean isOutputAsView,
OraAttributeBins[] customBins)
throws javax.datamining.JDMException
inputDataURI - uri of the input tableoutputDataURI - uri of the output view or tableisOutputAsView - falg to indicate the output is a view or tablecustomBins - an array of custom binsjavax.datamining.JDMException - if BinningTransform can not be created
public OraBinningTransform create(java.lang.String inputDataURI,
java.lang.String outputDataURI,
boolean isOutputAsView,
java.lang.String inputCategoricalBinTable,
java.lang.String inputNumericalBinTable,
OraAttributeBins[] customBins)
throws javax.datamining.JDMException
inputDataURI - uri of the input tableoutputDataURI - uri of the output view or tableisOutputAsView - falg to indicate the output is a view or tableinputCategoricalBinTable - categorical bin boundary tableinputNumericalBinTable - numerical bin boundary tablecustomBins - an array of custom binsjavax.datamining.JDMException - if BinningTransform can not be created
public OraBinningTransform create(java.lang.String inputDataURI,
java.lang.String outputDataURI,
boolean isOutputAsView,
java.lang.Integer numberOfNumericalBins,
java.lang.Integer numberOfCategoricalBins,
OraCategoricalBinningType catBinType,
OraNumericalBinningType numBinType)
throws javax.datamining.JDMException
inputDataURI - uri of the input tableoutputDataURI - uri of the output view or tableisOutputAsView - falg to indicate the output is a view or tablenumberOfNumericalBins - number of numerical bins to be used for numerical attributesnumberOfCategoricalBins - number of categorical bins to be used for categorical attributescatBinType - categorical attribute binning typenumBinType - numerical attribute binning typejavax.datamining.JDMException - if BinningTransform can not be created
public OraAttributeBins[] computeBins(java.lang.String inputDataURI,
java.lang.Integer numberOfNumericalBins,
java.lang.Integer numberOfCategoricalBins,
OraCategoricalBinningType catBinType,
OraNumericalBinningType numBinType,
java.lang.String[] excludeAttributes)
throws javax.datamining.JDMException
inputDataURI - uri of the input tablenumberOfNumericalBins - number of numerical bins to be used for numerical attributesnumberOfCategoricalBins - number of categorical bins to be used for categorical attributescatBinType - categorical attribute binning typenumBinType - numerical attribute binning typeexcludeAttributes - attributes that needs to be excluded from binningjavax.datamining.JDMException - if bin definitions can not be created
public OraNumericalAttributeBins[] computeNumericBins(java.lang.String inputDataURI,
java.lang.String[] numericAttributes,
OraNumericalBinningType[] numBinType,
java.lang.Integer[] numberOfNumericalBins)
throws javax.datamining.JDMException
inputDataURI - uri of the input tablenumberOfNumericalBins - number of numerical bins to be used for each numerical attributenumBinType - type of numeric binning for each attribute in the listnumericAttributes - attributes that needs to be binnedjavax.datamining.JDMException - if bin definitions can not be created
public OraCategoricalAttributeBins[] computeCategoricBins(java.lang.String inputDataURI,
java.lang.String[] categoricAttributes,
OraCategoricalBinningType[] catBinType,
java.lang.Integer[] numberOfCategoricBins)
throws javax.datamining.JDMException
inputDataURI - uri of the input tablenumberOfCategoricBins - number of numerical bins to be used for each categorical attributecatBinType - type of categorical binning for each attribute in the listcategoricAttributes - attributes that needs to be binnedjavax.datamining.JDMException - if bin definitions can not be created
|
Oracle Data Mining Java API Reference 10g Release 2 (10.2) B14341-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||